@font-face {
    font-family: font;
    src: url(../../Vazir/Vazir-Bold-FD.ttf);
}
html,body{
width: 100%;
height: auto;
float: left;
margin: 0;
padding: 0;   
direction: rtl;
}
body *{
    font-family: font;
}
a{
    text-decoration: none;
}
.filter-container{
    width: 25%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.filter-container form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 6.5em;
}
.filter-header{
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 1em;
    display: flex;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #b1b1b1;
    align-items: center;
    justify-content: space-between;
}
.filter-header h2{
    margin: 0;
    color: #30373f;
}
.filter-header i{
    font-size: 30px;
    display: none;
}
.filter-btn{
    width: fit-content;
    background-color: rgb(16, 76, 179);
    float: left;
    color: white;
    border: none;
    font-size: 14px;
    padding: 0.5em 11%;
    cursor: pointer;
    border-radius: 100px;
    box-sizing: border-box;
    transition: 0.4s;
    border: 1.5px solid rgba(80, 106, 173, 0.375);
}
.filter-btn:hover {
    color: rgb(0, 94, 202);
    background-color: rgb(231, 243, 255);
    transition: 0.4s;
}
.m-filter-ele{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(80, 106, 173, 0.375);
    padding: 1em;
    box-sizing: border-box;
    background-color: white;
    border-radius: 5px;
    margin-top: 1em;
}
.m-filter-ele h3{
    width: 100%;
    height: auto;
    float: left;
    margin: 0;
    margin-bottom: 1em;
    border-bottom: 2px solid rgba(80, 106, 173, 0.375);
    padding-bottom: 0.5em;
}
.m-filter-ele form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
}
.m-filter-category{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}
.m-filter-category li{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    list-style: none;
    border-bottom:1px dashed rgba(80, 106, 173, 0.375);
    margin-bottom: 1em;
    padding-bottom: 1em;
}
.m-filter-category li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}
.m-filter-category a{
    width: fit-content;
    float: right;
    color: rgb(16, 76, 179);
}
.m-search-box{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    border:1.5px solid rgba(80, 106, 173, 0.375);
    border-radius: 100px;
    overflow: hidden;
}
.m-search-box input{
    width: 100%;
    height: auto;
    float: left;
    box-sizing: border-box;
    padding: 0.6em 1em;
    border: none;
    font-size: 14px;
    background-color: rgba(223, 223, 223, 0.296);
    outline: none;
}
.m-search-box button{
    width: 4em;
    height: auto;
    float: left;
    border: none;
    background-color: rgb(0, 94, 202);
    color: white;
    cursor: pointer;
}
@media only screen and (max-width:1200px){
    .filter-container {
        width: 100%;
        margin-right: 0;
        margin: 1em 0;
    }
    .m-category-sec{
        width: 100% !important;
        padding: 0 !important;
    }
    .filter-container form {
        width: 100%;
        /* height: 0em;
        overflow: hidden; */
    }
    .products-sec{
        width: 100%;
    }
    .filter-header i{
        display: inline-block;
    }
}